home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / srle.c < prev    next >
C/C++ Source or Header  |  1997-04-18  |  5KB  |  195 lines

  1. /* Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* srle.c */
  20. /* RunLengthEncode filter */
  21. #include "stdio_.h"        /* includes std.h */
  22. #include "memory_.h"
  23. #include "strimpl.h"
  24. #include "srlx.h"
  25.  
  26. /* ------ RunLengthEncode ------ */
  27.  
  28. private_st_RLE_state();
  29.  
  30. #define ss ((stream_RLE_state *)st)
  31.  
  32. /* Set defaults */
  33. private void
  34. s_RLE_set_defaults(stream_state *st)
  35. {    s_RLE_set_defaults_inline(ss);
  36. }
  37.  
  38. /* Initialize */
  39. private int
  40. s_RLE_init(stream_state *st)
  41. {    return s_RLE_init_inline(ss);
  42. }
  43.  
  44. /* Process a buffer */
  45. private int
  46. s_RLE_process(stream_state *st, stream_cursor_read *pr,
  47.   stream_cursor_write *pw, bool last)
  48. {    register const byte *p = pr->ptr;
  49.     register byte *q = pw->ptr;
  50.     const byte *rlimit = pr->limit;
  51.     byte *wlimit = pw->limit;
  52.     int status = 0;
  53.     ulong rleft = ss->record_left;
  54.  
  55.     /*
  56.      * We thought that the Genoa CET demands that the output from this
  57.      * filter be not just legal, but optimal, so we went to the trouble
  58.      * of ensuring this.  It turned out that this wasn't actually
  59.      * necessary, but we didn't want to change the code back.
  60.      *
  61.      * For optimal output, we can't just break runs at buffer
  62.      * boundaries: unless we hit a record boundary or the end of the
  63.      * input, we have to look ahead far enough to know that we aren't
  64.      * breaking a run prematurely.
  65.      */
  66.  
  67.     /* Check for leftover output. */
  68. copy:    if ( ss->copy_left )
  69.       { uint rcount = rlimit - p;
  70.         uint wcount = wlimit - q;
  71.         uint count = ss->copy_left;
  72.  
  73.         if ( rcount < count )
  74.           count = rcount;
  75.         if ( wcount < count )
  76.           count = wcount;
  77.         if ( rleft < count )
  78.           count = rleft;
  79.         memcpy(q + 1, p + 1, count);
  80.         pr->ptr = p += count;
  81.         pw->ptr = q += count;
  82.         if ( (ss->record_left = rleft -= count) == 0 )
  83.           ss->record_left = rleft = ss->record_size;
  84.         if ( (ss->copy_left -= count) != 0 )
  85.           return (rcount == 0 ? 0 : 1);
  86.       }
  87.     while ( p < rlimit )
  88.       {    const byte *beg = p;
  89.         const byte *p1;
  90.         uint count = rlimit - p;
  91.         bool end = last;
  92.         byte next;
  93.  
  94.         if ( count > rleft )
  95.           count = rleft, end = true;
  96.         if ( count > 128 )
  97.           count = 128, end = true;
  98.         p1 = p + count - 1;
  99.         if ( count < 3 )
  100.           { if ( !end || count == 0 )
  101.               break;    /* can't look ahead far enough */
  102.             if ( count == 1 )
  103.               { if ( wlimit - q < 2 )
  104.               { status = 1;
  105.                 break;
  106.               }
  107.             *++q = 0;
  108.               }
  109.             else    /* count == 2 */
  110.               { if ( p[1] == p[2] )
  111.               { if ( wlimit - q < 2 )
  112.                   { status = 1;
  113.                     break;
  114.                   }
  115.                 *++q = 255;
  116.               }
  117.             else
  118.               { if ( wlimit - q < 3 )
  119.                   { status = 1;
  120.                     break;
  121.                   }
  122.                 *++q = 1;
  123.                 *++q = p[1];
  124.               }
  125.               }
  126.             *++q = p1[1];
  127.             p = p1 + 1;
  128.           }
  129.         else if ( (next = p[1]) == p[2] && next == p[3] )
  130.           {    if ( wlimit - q < 2 )
  131.               { status = 1;
  132.                 break;
  133.               }
  134.             /* Recognize leading repeated byte */
  135.             do { p++; }
  136.             while ( p < p1 && p[2] == next );
  137.             if ( p == p1 && !end )
  138.               { p = beg; /* need to look ahead further */
  139.                 break;
  140.               }
  141.             p++;
  142.             *++q = (byte)(257 - (p - beg));
  143.             *++q = next;
  144.           }
  145.         else
  146.           {    p1--;
  147.             while ( p < p1 && (p[2] != p[1] || p[3] != p[1]) )
  148.               p++;
  149.             if ( p == p1 )
  150.               { if ( !end )
  151.                   { p = beg; /* need to look ahead further */
  152.                     break;
  153.                   }
  154.                 p += 2;
  155.               }
  156.             count = p - beg;
  157.             if ( wlimit - q < count + 1 )
  158.               {    p = beg;
  159.                 if ( q >= wlimit )
  160.                   { status = 1;
  161.                     break;
  162.                   }
  163.                 /* Copy some now and some later. */
  164.                 *++q = count - 1;
  165.                 ss->copy_left = count;
  166.                 goto copy;
  167.               }
  168.             *++q = count - 1;
  169.             memcpy(q + 1, beg + 1, count);
  170.             q += count;
  171.           }
  172.         rleft -= p - beg;
  173.         if ( rleft == 0 )
  174.           rleft = ss->record_size;
  175.       }
  176.     if ( last && status == 0 && ss->EndOfData )
  177.       { if ( q < wlimit )
  178.           *++q = 128;
  179.         else
  180.           status = 1;
  181.       }
  182.     pr->ptr = p;
  183.     pw->ptr = q;
  184.     ss->record_left = rleft;
  185.     return status;
  186. }
  187.  
  188. #undef ss
  189.  
  190. /* Stream template */
  191. const stream_template s_RLE_template =
  192. {    &st_RLE_state, s_RLE_init, s_RLE_process, 128, 2, NULL,
  193.     s_RLE_set_defaults, s_RLE_init
  194. };
  195.